Working with the Viewer > Customizing the Viewer > Customization Overview > Customization Examples > Changing the Position of the Menu Bar |
You can change the layout of the tab panes by modifying the markup located in viewerTemplate.html.
Example |
Copy Code
|
---|---|
<div class="tabset pcc-nav-tabset" data-pcc-nav> <!-- Tab --> <div class="pcc-tab" data-pcc-nav-tab="demo"> <div class="pcc-tab-item">Demo</div> <!-- This tab pane is vertical and left aligned --> <div class="pcc-tab-pane pcc-tab-vertical pcc-left"> <!-- Tab content --> </div> </div> <!-- End tab --> </div> |